home *** CD-ROM | disk | FTP | other *** search
/ PC World 2007 May / PCWorld_2007-05_cd.bin / komunikace / alleycode / alleycodesetup.exe / {app} / PHP / count.php < prev    next >
Encoding:
PHP Script  |  2002-11-19  |  429 b   |  20 lines

  1. <?php
  2.  
  3. //create a file with the number "1". Name it "count.dat".
  4. //Upload it in the same directory as "count.php". and schmod it 777.
  5.  
  6. $counter_file = "count.dat";
  7. if(!($fp = fopen($counter_file, "r"))) die ("Cannot open $counter_file.");
  8. $counter = (int) fread($fp, 20);
  9. fclose($fp);
  10.  
  11. $counter++;
  12.  
  13. echo "You're visitor No. $counter.";
  14.  
  15. $fp = fopen($counter_file, "w");
  16. fwrite($fp, $counter);
  17. fclose($fp);
  18.  
  19. ?>
  20.